home *** CD-ROM | disk | FTP | other *** search
- <CFINSERT dataSource="$${DataSource}" tableName="$${Table}">
-
-
- <HTML><HEAD>
- <TITLE>$${ApplicationName} - Entry Action</TITLE>
- </HEAD><BODY bgcolor="ffffff">
-
- <FONT size="+1">$${ApplicationName}</FONT> <BR>
- <FONT size="+2"><B>Entry was successfully submitted</B></FONT>
-
- <TABLE>
- <WIZSET i = 0>
- <WIZLOOP index="CurrentField" list="$${EntryFields}">
- <WIZSET i = i + 1>
- <!---- field is in format 'sTable.sField=sType;nSize;bRequired' ---->
- <WIZSET Separator1Pos = Find( CurrentField, '.' )>
- <WIZSET Separator2Pos = Find( CurrentField, '=' )>
- <WIZSET Separator3Pos = Find( CurrentField, ';' )>
- <WIZSET FieldName = Mid( CurrentField, Separator1Pos + 1, Separator2Pos - Separator1Pos - 1 )>
- <WIZSET FieldType = Mid( CurrentField, Separator2Pos + 1, Separator3Pos - Separator2Pos - 1 )>
-
- <!--- Field: $${TableName}.$${FieldName} --->
- <TR>
- <TD valign="top"> $${FieldName}: </TD>
- <TD>
- <WIZIF FieldType EQ 'BIT'>
- <CFIF Form.$${FieldName} is 1> Yes <CFELSE> No </CFIF>
- <WIZELSEIF FieldType EQ 'DATETIME'>
- <CFOUTPUT>#DateFormat(Form.$${FieldName})#</CFOUTPUT>
- <WIZELSE>
- <CFOUTPUT>#Form.$${FieldName}#</CFOUTPUT>
- </WIZIF>
- </TD>
- </TR>
- </WIZLOOP>
- </TABLE>
-
-
- </BODY></HTML>